home *** CD-ROM | disk | FTP | other *** search
/ Power Bytes: Money & Finance / PowerBytes Money and Finance CD-ROM 01 / PowerBytes Money and Finance CD-ROM 01.iso / Demos / TrueBASIC Demo / User's Guide / Sqroot < prev    next >
Encoding:
Text File  |  1985-06-20  |  268 b   |  10 lines  |  [TEXT/TRUE]

  1. ! Square roots.
  2. !
  3. PRINT "Number", "Square Root"     ! Print labels
  4. PRINT                             ! Leave blank line
  5.  
  6. FOR number = 0 to 1 step .1       ! Go from 0 to 1 in small steps
  7.    PRINT number, Sqr(number)      ! Print number and square root
  8. NEXT number
  9. END
  10.